:root {
    --primary: #FD9E02;
    --bg: #202020;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 7%;
    padding-left: 2rem;
    padding-right: 4rem;
    background-color: rgb(33, 33, 33, 0.8);
    border-bottom: 1px solid rgb(175, 129, 14, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.navbar .navbar-logo span {
    color: var(--primary);
}

.navbar .navbar-logo {
    display: flex;
    align-items: center;
}

.navbar .navbar-logo .imagelogo {
    max-height: 9vh;
    display: inline-block;
}

.navbar .navbar-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-left: 0.5rem;
}

.navbar .navbar-nav a {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
    color: var(--primary);
}

.navbar .navbar-nav a::after {
    content: '';
    display: block;
    padding-bottom: 8px;
    border-bottom: 0.1rem solid var(--primary);
    transform: scaleX(0);
    transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
    transform: scaleX(0.5);
}

.navbar .navbar-extra a {
    color: #fff;
}

.navbar .navbar-extra a:hover {
    color: var(--primary)
}

#menu-bars {
    display: none;
}

/* Media Queries */
/* Laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }

    #menu-bars {
        display: inline-block;
    }

    .navbar .navbar-nav {
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: rgba(80, 80, 80, 0.6);
        width: 25rem;
        height: 100vh;
        transition: 0.3s;
    }

    .navbar .navbar-nav.active {
        right: 0;
    }

    .navbar .navbar-nav a {
        color: #fff;
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 1.4rem;
    }

    .navbar .navbar-nav a::after {
        transform-origin: 0 0;
    }

    .navbar .navbar-nav a:hover::after {
        transform: scaleX(0.2);
    }

    .hero-tamu .row {
        flex-wrap: wrap;
    }
}

/* Handphone */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
}

.navbar .navbar-extra .cta {
    margin-top: 0.2rem;
    margin-right: 1.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: var(--primary);
    border-radius: 0.8rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

.navbar .navbar-extra .cta:hover {
    margin-top: 0.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #202020;
    background-color: #FFB703;
    border-radius: 0.8rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/rencongbghome.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero .content {
    padding: 1.4rem 7%;
    max-width: 60rem;
}

.hero .content h1 {
    font-size: 4em;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    line-height: 1.2;
}

.hero .content h1 span {
    color: var(--primary);
}

.hero .content p {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    font-weight: 100;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2%;
    background-color: rgb(33, 33, 33, 0.5);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer .footer-logo a {
    display: flex;
    color: #fff;
    align-items: center;
}

.footer .socialmedia a {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    margin: 0 1rem;
}

.footer .socialmedia a:hover {
    color: #e9c2c5;
    display: inline-block;
    font-size: 1rem;
    margin: 0 1rem;
}

/* Hero Section */
.navigasi-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 7%;
    padding-left: 2rem;
    padding-right: 4rem;
    background-color: rgb(33, 33, 33, 0.8);
    border-bottom: 1px solid #FFB703;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.navigasi-menu .navigasi-logo span {
    color: var(--primary);
}

.navigasi-menu .navigasi-logo {
    display: flex;
    align-items: center;
}

.navigasi-menu .navigasi-logo .imagelogo {
    max-height: 9vh;
    display: inline-block;
}

.navigasi-menu .navigasi-logo a {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-left: 0.5rem;
}

.navigasi-menu .navigasi-nav a {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    margin: 0 1rem;
}

.navigasi-menu .navigasi-nav a:hover {
    color: var(--primary);
    text-decoration: none;
}

.navigasi-menu .navigasi-nav a::after {
    content: '';
    display: block;
    padding-bottom: 8px;
    border-bottom: 0.1rem solid rgb(175, 129, 14, 0.8);
    transform: scaleX(0);
    transition: 0.2s linear;
}

.navigasi-menu .navigasi-nav a:hover::after {
    transform: scaleX(0.5);
}

.navigasi-menu .navigasi-extra a {
    color: #fff;
}

.navigasi-menu .navigasi-extra a:hover {
    color: var(--primary)
}

.navigasi-menu .navigasi-extra .cta {
    margin-top: 0.2rem;
    margin-right: 1.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    background-color: var(--primary);
    border-radius: 0.8rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

.navigasi-menu .navigasi-extra .cta:hover {
    margin-top: 0.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #202020;
    background-color: #FFB703;
    border-radius: 0.8rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

#menu-bars {
    display: none;
}

/* Media Queries */
/* Laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }

    #menu-bars {
        display: inline-block;
    }

    .navigasi-menu .navigasi-nav {
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: rgba(80, 80, 80, 0.6);
        width: 25rem;
        height: 100vh;
        transition: 0.3s;
    }

    .navigasi-menu .navigasi-nav.active {
        right: 0;
    }

    .navigasi-menu .navigasi-nav a {
        color: #fff;
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 1.4rem;
    }

    .navigasi-menu .navigasi-nav a::after {
        transform-origin: 0 0;
    }

    .navigasi-menu .navigasi-nav a:hover::after {
        transform: scaleX(0.2);
    }

    .hero-tamu .row {
        flex-wrap: wrap;
    }
}

/* Handphone */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
}

.hero-tamu {
    min-height: 100vh;
    padding: 2rem 7% 1.4rem;
    background-image: url('../img/rencongbghome.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-tamu h3 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10vh;
    font-size: 2em;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
    /* line-height: 1.2; */
}

.hero-tamu h3 span {
    color: var(--primary);
}

.hero-tamu .content p {
    font-size: 2.5em;
    margin-top: 0.2rem;
    line-height: 1.4;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero-tamu .row {
    padding: 0.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    background-color: rgba(73, 73, 73, 0.7);
}

.hero-tamu .row .buku-img {
    flex: 1 1 35rem;
}

.hero-tamu .row .buku-img img {
    width: 100%;
}

.hero-tamu .row form {
    flex: 1 1 30rem;
    padding: 1rem 1rem;
    text-align: center;
    align-items: center;
}

.hero-tamu .row form .input-group-buku {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    border: 1px solid #eee;
    background-color: rgba(37, 37, 37, 0.7);
    padding-left: 2rem;
    border-radius: 0.5rem;
}

.hero-tamu .row form .input-group-buku input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background: none;
    color: #fff;
}

.hero-tamu .row form .foto {
    width: 100%;
    margin-right: 1.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

.hero-tamu .row form .foto:hover {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #202020;
    background-color: #FFB703;
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

.hero-tamu .row form .submit {
    width: 140px;
    margin-top: 0.8rem;
    margin-right: 1.2rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #FFB703;
    background-color: transparent;
    border: 2px solid #FFB703;
    border-radius: 2rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}

.hero-tamu .row form .submit:hover {
    margin-top: 0.8rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: var(--primary);
    border-radius: 2rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 3, 0.5);
}